Tables [dbo].[Product_Location]
Properties
PropertyValue
HeapYes
Row Count4
Created3:13:04 PM Friday, January 07, 2011
Last Modified11:40:06 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow NullsDefault
Indexes iProduct_LocationLOCATION_CODE: LOCATION_CODELOCATION_CODEvarchar(10)10
No
('')
DESCRIPTIONvarchar(255)255
No
('')
TIME_STAMPtimestamp8
Yes
Indexes Indexes
NameColumns
iProduct_LocationLOCATION_CODELOCATION_CODE
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
CREATE TABLE [dbo].[Product_Location]
(
[LOCATION_CODE] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_Product_Location_LOCATION_CODE] DEFAULT (''),
[DESCRIPTION] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_Product_Location_DESCRIPTION] DEFAULT (''),
[TIME_STAMP] [timestamp] NULL
) ON [PRIMARY]

GO
CREATE NONCLUSTERED INDEX [iProduct_LocationLOCATION_CODE] ON [dbo].[Product_Location] ([LOCATION_CODE]) ON [PRIMARY]
GO
GRANT REFERENCES ON  [dbo].[Product_Location] TO [IMIS]
GRANT SELECT ON  [dbo].[Product_Location] TO [IMIS]
GRANT INSERT ON  [dbo].[Product_Location] TO [IMIS]
GRANT DELETE ON  [dbo].[Product_Location] TO [IMIS]
GRANT UPDATE ON  [dbo].[Product_Location] TO [IMIS]
GO
Uses